SciChart.Drawing Assembly > SciChart.Drawing.Common Namespace > RenderContextBase Class > DrawPixelsVertically Method : DrawPixelsVertically(Int32,Int32,Int32,Int32,IList<Int32>,Double,Boolean) Method
Screen X coordinate where to draw pixels
Screen X coordinate where to draw pixels
Screen Y coordinate of vertical scan line's bottom. Can be located outdide of visible area, in this case not all pixels in list are rendered
Screen Y coordinate of vertical scan line's top. Can be located outdide of visible area, in this case not all pixels in list are rendered
The colors to apply to the vertical scanline
The opacity of the vertical scaline, from 0.0 to 1.0
if set to true then y axis is flipped.
DrawPixelsVertically(Int32,Int32,Int32,Int32,IList<Int32>,Double,Boolean) Method
Draws vertical scan line for heatmap from bottom to top, from yStart to yEnd
Syntax
public abstract void DrawPixelsVertically( 
   int xLeft,
   int xRight,
   int yStartBottom,
   int yEndTop,
   IList<int> pixelColorsArgb,
   double opacity,
   bool yAxisIsFlipped
)

Parameters

xLeft
Screen X coordinate where to draw pixels
xRight
Screen X coordinate where to draw pixels
yStartBottom
Screen Y coordinate of vertical scan line's bottom. Can be located outdide of visible area, in this case not all pixels in list are rendered
yEndTop
Screen Y coordinate of vertical scan line's top. Can be located outdide of visible area, in this case not all pixels in list are rendered
pixelColorsArgb
The colors to apply to the vertical scanline
opacity
The opacity of the vertical scaline, from 0.0 to 1.0
yAxisIsFlipped
if set to true then y axis is flipped.
Exceptions
ExceptionDescription
The exception that is thrown when a requested method or operation is not implemented.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also